home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / Sample Code / CALib & You… / Source / CASample / CAS_Menu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-07  |  612 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.  
  3.     File:        CAS_Menu.h
  4.  
  5.     Contains:    This is the standard menu.h. It contains constants and 
  6.                 public function prototypes for menu.c
  7.  
  8.     Written by:    David H Nelson
  9.  
  10.     Copyright © 1993-1995 ComponentWorks, All rights reserved.
  11.  
  12.     Change History (most recent first):
  13.  
  14.          <1>     11/20/93    DHN        Created.
  15. */
  16.  
  17. #if !defined(_H_menu)
  18. #define _H_menu
  19.  
  20. // other constants
  21. #define kAboutBoxID        128
  22.  
  23.  
  24. #if defined(__cplusplus)
  25. extern "C"
  26. {
  27. #endif
  28.  
  29. void Menu_SetUpMenus( void );
  30. void Menu_AdjustMenus(
  31.     WindowPtr    theWindow );
  32. void Menu_HandleMenu(
  33.     long        mSelect,
  34.     WindowPtr    theWindow );
  35.  
  36. #if defined(__cplusplus)
  37. }
  38. #endif
  39.  
  40.  
  41. #endif
  42.  
  43.